home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / commo51.zip / VT102-1.MAC < prev    next >
Text File  |  1991-12-21  |  2KB  |  55 lines

  1.                    VT102 Key Support - Set #1
  2.                    ──────────────────────────
  3.  
  4. This set uses F1 - F4 for PF1 - PF4 and the keypad keys.  Numlock must be ON
  5. to use digits 0 - 9 and the period.  Numlock must be OFF to use the keypad
  6. cursor keys.  Works best with the enhanced keyboard.
  7.  
  8. This file may be used in place of COMMO.MAC (by renaming it) or you may
  9. combine elements of both (check for duplicate key definitions).  It may also
  10. be loaded automatically as part of a login macro, using the MACLoad function.
  11. See Appendices D and E in COMMO.DOC for details.
  12.  
  13. ───────────────────────────────────────────────────────────────────────────
  14.  
  15.  {:hom} {send ^[[H} {}           Home
  16.  {:chm} {send ^[[L} {}           ^Home
  17.  {:pgu} {send ^[[Or} {}          PgUp
  18.  {:cpu} {send ^[[M} {}           ^PgUp
  19.  {:pgd} {send ^[[Oq} {}          PgDn
  20.  {:cpd} {send ^[[H^[[2J} {}      ^PgDn
  21.  {:end} {send ^[[K} {}           End
  22.  
  23.  {:upa} {vtcur ^[[A|^[OA} {}     Up Arrow
  24.  {:dna} {vtcur ^[[B|^[OB} {}     Down Arrow
  25.  {:lfa} {vtcur ^[[D|^[OD} {}     Left Arrow
  26.  {:rta} {vtcur ^[[C|^[OC} {}     Right Arrow
  27.  
  28.  {:ins} {send ^[On} {}           Insert
  29.  {:del} {send } {}              Delete
  30.  
  31.  {:bsp} {send ^H} {}             Backspace
  32.  {:cbs} {send } {}              ^Backspace
  33.  
  34.  {:nf1} {send ^[OP} {}           F1  (PF1)
  35.  {:nf2} {send ^[OQ} {}           F2  (PF2)
  36.  {:nf3} {send ^[OR} {}           F3  (PF3)
  37.  {:nf4} {send ^[OS} {}           F4  (PF4)
  38.  
  39.  {:kp0} {vtpad 0|^[Op} {}        Keypad 0
  40.  {:kp1} {vtpad 1|^[Oq} {}        Keypad 1
  41.  {:kp2} {vtpad 2|^[Or} {}        Keypad 2
  42.  {:kp3} {vtpad 3|^[Os} {}        Keypad 3
  43.  {:kp4} {vtpad 4|^[Ot} {}        Keypad 4
  44.  {:kp5} {vtpad 5|^[Ou} {}        Keypad 5
  45.  {:kp6} {vtpad 6|^[Ov} {}        Keypad 6
  46.  {:kp7} {vtpad 7|^[Ow} {}        Keypad 7
  47.  {:kp8} {vtpad 8|^[Ox} {}        Keypad 8
  48.  {:kp9} {vtpad 9|^[Oy} {}        Keypad 9
  49.  {:kp.} {vtpad .|^[On} {}        Keypad .
  50.  
  51.  {:gr*} {vtpad ,|^[Ol} {}        Keypad * (,)
  52.  {:gr-} {vtpad -|^[Om} {}        Keypad -
  53.  {:gr+} {vtpad ^m|^[OM} {}       Keypad + (cr)
  54.  
  55.